home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 8_8.lha / 8_8 / 8_8a1.h < prev    next >
Text File  |  1993-08-08  |  427b  |  21 lines

  1. * Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
  2. * The C++ Answer Book */
  3. * Tony Hansen */
  4. * All rights reserved. */
  5. / Exercise 8.8
  6. / Random Access reading from a file
  7. ifndef RC_H
  8.  define RC_H
  9. include <stdio.h>            //  DELETE
  10.  
  11. lass randomchars
  12.  
  13. include "8_8a2.h"    // DELETE
  14. ublic:
  15.    randomchars(char *filename);
  16.    ~randomchars();
  17.    int openedokay();
  18.    int operator[](long offset);
  19. ;
  20. endif /* RC_H */
  21.